IfcOpenShell es una biblioteca de software de código abierto (LGPL 3) que ayuda a los desarrolladores a trabajar con el formato de archivo industry foundation classes (IFC). El formato de archivo IFC puede utilizarse para describir datos de construcción y edificación. El formato se utiliza habitualmente para building information modelling (BIM), por ejemplo, para el análisis de cargas mecánicas y para los estudios de eficiencia térmica y energética. IfcOpenShell es principalmente una colección de librerías C++, sin embargo, como tiene enlaces Python, puede integrarse con programas como FreeCAD y Blender.
IfcOpenShell utiliza OpenCASCADE internamente para convertir la geometría implícita de los archivos IFC en geometría explícita que otros paquetes CAD pueden entender, por ejemplo, STEP, OBJ, y DAE.
A partir de la v0.19, FreeCAD es capaz de importar archivos IFC siempre que el módulo ifcopenshell
Python esté disponible en el sistema. Asimismo, los Arquitectura y BIM ambientes de trabajo pueden exportar un modelo de edificio al formato IFC para que pueda ser utilizado en otras aplicaciones.
Para verificar que IfcOpenShell está instalado en su sistema, intente importarlo desde la Consola de Python; la biblioteca está correctamente instalada si no se devuelve ningún mensaje de error.
import ifcopenshell
IfcOpenShell puede instalarse de varias maneras, dependiendo de su sistema operativo y del entorno de Python. En el pasado, IfcOpenShell era un poco difícil de instalar, ya que tenía que ser compilado para su sistema específico; sin embargo, a partir de este escrito (2020) es más fácil empezar a usarlo, ya que ahora se incluye junto con FreeCAD en muchas distribuciones de FreeCAD. En general, es aconsejable utilizar una de estas distribuciones precompiladas, y sólo compilarlo tú mismo si eres un usuario avanzado.
BlenderBIM is another project that uses IfcOpenShell. They provide up-to-date IfcOpenShell packages for several platforms. This is the best way to make sure you have a recent version of IfcOpenShell.
BlenderBIM IfcOpenShell install page: https://blenderbim.org/docs-python/ifcopenshell-python/installation.html
The easiest way to install IfcOpenShell is using pip. Once pip is installed on your system, you can install IfcOpenShell easily by issuing from a terminal window:
pip install ifcopenshell
Para los sistemas Windows y MacOS, las distribuciones de FreeCAD que se han creado con el gestor de paquetes Conda suelen incluir ya IfcOpenShell, por lo que no es necesaria ninguna instalación adicional. Obtén la distribución apropiada desde la página Download.
La AppImage para Linux también se basa en Conda, y también incluye IfcOpenShell.
Si está disponible, puede instalar IfcOpenShell utilizando el gestor de paquetes de su distribución.
sudo apt install ifcopenshell
Sin embargo, tenga en cuenta que los paquetes proporcionados por muchos repositorios de Linux tienden a ser antiguos, y pueden no contener los últimos desarrollos del software. Si quieres estar seguro de que estás utilizando el software más reciente, utiliza una distribución de FreeCAD basada en Conda, una distribución precompilada de IfcOpenShell, o compila tú mismo IfcOpenShell.
Hay un repositorio especial del proyecto IfcOpenShell que compila regularmente las bibliotecas de IfcOpenShell para varios sistemas (Linux, Windows, MacOS), arquitecturas (32 y 64 bits), y versiones de Python (2.7, 3.x). Para utilizar estas librerías precompiladas, debes elegir la versión correcta que coincida con tu sistema operativo, arquitectura, y los números mayor y menor del Python que se utiliza con FreeCAD. Esto significa que los dos primeros números deben coincidir (Python 3.6 y 3.7 se consideran versiones distintas) mientras que el tercero (micro) no importa (Python 3.6.5 y 3.6.12 se consideran iguales a efectos de compatibilidad).
v0.6.0
.IfcOpenBot/IfcOpenShell/commits/v0.6.0
.Nota: los siguientes ejemplos suponen un sistema basado en Debian/Ubuntu, pero el procedimiento general debería funcionar para otros sistemas operativos.
ifcopenshell/
.unzip ifcopenshell-python-36-v0.6.0-4baec57-linux64.zip
sys.path
en la consola de Python.import sys
print(sys.path)
ifcopenshell/
en el directorio principal de tu propio usuario.mv -t $HOME/.local/lib/python3.6/site-packages/ ifcopenshell/
Si desea instalar la biblioteca IfcOpenShell en todo el sistema, normalmente necesitará privilegios de superusuario para escribir en los directorios del sistema; normalmente se trata de un directorio site-packages/
, o un directorio dist-packages/
para las distribuciones Debian/Ubuntu.
sudo mv -t /usr/local/lib/python3.6/dist-packages/ ifcopenshell/
Si el directorio se ha movido correctamente, comprueba que el módulo ifcopenshell
es accesible desde la Consola de Python.
>>> import ifcopenshell
>>> print(ifcopenshell.version)
0.6.0b0
>>> print(ifcopenshell.__path__)
['/home/user/.local/lib/python3.6/site-packages/ifcopenshell']
Para eliminar la biblioteca instalada, basta con eliminar el directorio correspondiente con todos los módulos dentro.
rm -rf $HOME/.local/lib/python3.6/site-packages/ifcopenshell/
sudo rm -rf /usr/local/lib/python3.6/dist-packages/ifcopenshell/
Compiling IfcOpenShell is recommended only for advanced users. The process is similar to compiling FreeCAD on Linux, so if you have done this already, then you may already have the necessary requisites like the OpenCASCADE's development files. The process uses the CMake configuration tool to produce a custom Makefile
for use with the Make tool.
The general instructions are outlined in the IfcOpenShell repository, and are as follows:
IfcConvert
binary.cmake
to generate a Makefile
, then start the compilation by running make
.ifcopenshell
Python module in the appropriate site-packages/
directory so that it is found by FreeCAD.Note: the following examples assume a Debian/Ubuntu based system, but the general procedure should work for other operating systems. For example, in Debian shared libraries are normally located in /usr/lib/x86_64-linux-gnu/
while in other distributions this may be /usr/lib64/
so the paths should be adjusted accordingly.
Instale las herramientas básicas de compilación.
sudo apt install git cmake gcc g++ libboost-all-dev
Obtenga el código fuente del proyecto y colóquelo en un directorio personalizado al que tenga acceso total de escritura.
As of this writing (2020), the master branch of the IfcOpenShell project does not contain the latest code, so we need to clone a specific branch.
git clone https://github.com/IfcOpenShell/IfcOpenShell -b v0.6.0 IfcOpenShell-source
Install the development files of OpenCASCADE.
sudo apt install libocct*-dev
Which expands to
sudo apt install libocct-data-exchange-dev libocct-draw-dev libocct-foundation-dev libocct-modeling-algorithms-dev libocct-modeling-data-dev libocct-ocaf-dev libocct-visualization-dev
You may use the community edition (OCE) of OpenCASCADE as well, however, please notice that this version is old and no longer recommended by FreeCAD as of 2020.
Install the development files of OpenCOLLADA.
sudo apt install opencollada-dev
If the files are too old in your distribution, you may also compile the libraries yourself. The procedure is outlined in the main repository, KhronosGroup/OpenCOLLADA, and it's very straight forward as it only requires the libpcre3
and libxml2
development files.
sudo apt install libpcre3-dev libxml2-dev
git clone https://github.com/KhronosGroup/OpenCOLLADA OpenCOLLADA-source
mkdir -p OpenCOLLADA-build
cd OpenCOLLADA-build
cmake ../OpenCOLLADA-source
make -j 3
sudo make install
For usage with FreeCAD you need the Python wrapper which uses SWIG to generate the proper interfaces from the C++ classes.
sudo apt-get install python-all-dev swig
It is recommended to perform the configuration and compilation in a specific build directory separate from the source directory.
mkdir -p IfcOpenShell-build
cd IfcOpenShell-build
cmake ../IfcOpenShell-source/cmake/
Notice that the CMakeLists.txt
file that drives CMake is inside the cmake/
subdirectory in the source directory.
Depending on your Linux distribution, and the way you installed the dependencies, you may have to define some CMake variables so that the libraries are found properly.
If you manually compiled OpenCASCADE, or if the libraries are not in a standard directory, you may have to set the proper variables.
cmake \
-DOCC_INCLUDE_DIR=/usr/include/opencascade \
-DOCC_LIBRARY_DIR=/usr/lib/x86_64-linux-gnu \
../IfcOpenShell-source/cmake/
By default the build system expects the community edition (OCE) of OpenCASCADE (/usr/include/oce/
), however, please notice that this version is old and no longer recommended by FreeCAD as of 2020. For this reason installing the development files of the main version of OpenCASCADE (OCCT) is recommended.
If you don't need OpenCOLLADA support (DAE files) you need to turn it off explicitly with the COLLADA_SUPPORT
variable.
cmake \
...
-DCOLLADA_SUPPORT=FALSE \
../IfcOpenShell-source/cmake/
If you manually compiled OpenCOLLADA, or if the libraries are not in a standard directory, you may have to set the proper variables for OpenCOLLADA and for the libpcre
library.
cmake \
...
-DOPENCOLLADA_INCLUDE_DIR=/usr/include/opencollada \
-DOPENCOLLADA_LIBRARY_DIR=/usr/lib/opencollada \
-DPCRE_LIBRARY_DIR=/usr/lib/x86_64-linux-gnu \
../IfcOpenShell-source/cmake/
If the libxml2
libraries are not found during compilation and linking, or if the libraries are not in a standard directory, you may have to set the proper variables.
cmake \
...
-DLIBXML2_INCLUDE_DIR=/usr/include/libxml2 \
-DLIBXML2_LIBRARIES=/usr/lib/x86_64-linux-gnu/libxml2.so \
../IfcOpenShell-source/cmake/
By default, the Python module ifcopenshell
will be installed in a system site-packages/
directory, so it requires superuser privileges. By setting the USERSPACE_PYTHON_PREFIX
variable, the installation of the Python module will be done to the user's home directory.
cmake \
...
-DUSERSPACE_PYTHON_PREFIX=ON \
../IfcOpenShell-source/cmake/
If you want to generate a binding for a particular Python version, set the PYTHON_EXECUTABLE
variable to the specific executable. Remember that this version must be the same Python version against which FreeCAD was compiled.
cmake \
...
-DPYTHON_EXECUTABLE=/usr/bin/python3.6 \
../IfcOpenShell-source/cmake/
In a typical Debian/Ubuntu system you may use this line to configure the compilation. Adjust it as necessary.
cmake -DOCC_INCLUDE_DIR=/usr/include/opencascade -DOCC_LIBRARY_DIR=/usr/lib/x86_64-linux-gnu -DLIBXML2_INCLUDE_DIR=/usr/include/libxml2 -DLIBXML2_LIBRARIES=/usr/lib/x86_64-linux-gnu/libxml2.so -DUSERSPACE_PYTHON_PREFIX=ON ../IfcOpenShell-source/cmake/
Without OpenCOLLADA:
cmake -DOCC_INCLUDE_DIR=/usr/include/opencascade -DOCC_LIBRARY_DIR=/usr/lib/x86_64-linux-gnu -DCOLLADA_SUPPORT=FALSE -DLIBXML2_INCLUDE_DIR=/usr/include/libxml2 -DLIBXML2_LIBRARIES=/usr/lib/x86_64-linux-gnu/libxml2.so -DUSERSPACE_PYTHON_PREFIX=ON ../IfcOpenShell-source/cmake/
If there were no error messages during configuration with CMake, a Makefile
should have been created in the build directory, so you can proceed to compile the libraries by running make
.
make -j N
N
is the number of processors that you assign to the compilation process; choose at least one fewer than the total number of CPU cores that you have.
All configuration options are available in the CMakeLists.txt
file located inside the IfcOpenShell-source/cmake/
directory. If there are problems when running CMake or Make, look here for other options that may need to be set.
In all instructions above, instead of cmake
, the graphical interface cmake-gui
can be used. This will quickly show the available options in the configuration.
cmake-gui ../IfcOpenShell-source/cmake/
If the build was successful you should have an examples/
subdirectory with the newly compiled IfcOpenHouse
executable. Run this utility from the build directory to generate a sample IFC file.
example/IfcOpenHouse
The sample IFC file should appear in the build directory, and can be used as input to the also newly compiled IfcConvert
executable. This utility takes as input an IFC file, and produces as output a different format including OBJ, DAE if OpenCOLLADA support was enabled, STEP, IGS, XML, SVG, or another IFC.
./IfcConvert IfcOpenHouse.ifc
If no output file is specified, by default it will create an OBJ file and its accompanying material table (MTL).
If the compilation doesn't report any errors, you may run make install
to copy the headers, compiled libraries, and binaries to their corresponding installation directories.
sudo make install
By default, the CMAKE_INSTALL_PREFIX
is /usr/local/
, so all compiled files will be placed under this directory, which normally requires elevated privileges.
/usr/local/bin/IfcConvert
/usr/local/bin/IfcGeomServer
/usr/local/include/ifcparse/*.h
/usr/local/include/ifcgeom/*.h
/usr/local/include/ifcgeom_schema_agnostic/*.h
/usr/local/include/serializers/{*.h,*.cpp}
/usr/local/include/serializers/schema_dependent/{*.h,*.cpp}
/usr/local/lib/libIfcGeom*.a
/usr/local/lib/libIfcParse.a
/usr/local/lib/libSerializers*.a
The ifcopenshell
Python module that is required for FreeCAD is not actually present in the build directory; this package is created only when make install
is run. The resulting package is placed in a site-packages/
directory, or a dist-packages/
directory for Debian/Ubuntu distributions.
/usr/lib/python3/dist-packages/ifcopenshell/
If the USERSPACE_PYTHON_PREFIX
variable was set during the CMake configuration step, ifcopenshell
will be placed in the user's site-packages/
directory.
$HOME/.local/lib/python3.6/site-packages/ifcopenshell/
To remove the installed libraries, just remove the corresponding files that were installed, and the ifcopenshell/
directory with all modules inside.
sudo rm -rf /usr/local/bin/IfcConvert
sudo rm -rf /usr/local/bin/IfcGeomServer
sudo rm -rf /usr/local/include/ifcparse/
sudo rm -rf /usr/local/include/ifcgeom/
sudo rm -rf /usr/local/include/ifcgeom_schema_agnostic/
sudo rm -rf /usr/local/lib/libIfcGeom*
sudo rm -rf /usr/local/lib/libIfcParse*
sudo rm -rf /usr/local/lib/libSerializers*
sudo rm -rf /usr/lib/python3/dist-packages/ifcopenshell/
Or if the USERSPACE_PYTHON_PREFIX
variable was set.
sudo rm -rf $HOME/.local/lib/python3.6/site-packages/ifcopenshell/
Compilation of the entire IfcOpenShell distribution produces binaries like IfcConvert
and IfcGeomServer
, as well as many static libraries (lib*.a
) in the build directory. However, for FreeCAD we only need the ifcopenshell
Python module. This module is not a single file, but a "package", that is, a directory with various files. This ifcopenshell
package is put together from the Python wrappers built inside IfcOpenShell-build/ifcwrap/
, and from the Python modules in the original source directory IfcOpenShell-source/src/ifcopenshell-python/ifcopenshell/
.
../IfcOpenShell-build/ifcwrap/ifcopenshell_wrapper.py
../IfcOpenShell-build/ifcwrap/_ifcopenshell_wrapper.so
../IfcOpenShell-source/src/ifcopenshell-python/ifcopenshell/
The ifcopenshell
module is created by copying the original source directory, and adding the two *ifcopenshell_wrapper*
files to it.
cp -rt . ../IfcOpenShell-source/src/ifcopenshell-python/ifcopenshell/
cp -t ifcopenshell/ ifcwrap/ifcopenshell_wrapper.py ifcwrap/_ifcopenshell_wrapper.so
Now this directory can be moved to the user-specific or system site-packages/
(dist-packages/
for Debian/Ubuntu) to make it available for all Python applications.
mv -t $HOME/.local/lib/python3.6/site-packages/ ifcopenshell/
Or for system-wide installation:
sudo mv -t /usr/lib/python3/dist-packages/ ifcopenshell/
Now the ifcopenshell
module should be available to be imported from a Python console.
>>> import ifcopenshell
>>> print(ifcopenshell.version)
0.6.0b0
>>> print(ifcopenshell.__path__)
['/home/user/.local/lib/python3.6/site-packages/ifcopenshell']
The IfcOpenShell library actually includes a small graphical viewer for IFC files that uses PyQt5 and PythonOCC.
To launch this viewer from the Python console, the application
class needs to be instantiated and started:
from ifcopenshell.geom.app import application
application().start()
If the library is already installed, the entire module can also be run from the terminal:
python3 /home/user/.local/lib/python3.6/site-packages/ifcopenshell/geom/app.py
At the time of writing (2020), only the PythonOCC version compiled for the OpenCASCADE community edition (OCE) was supported.
The IfcOpenShell project has also developed "IFC Pipeline", a self-hosted IFC processing and visualization program. It also provides a small web application that accepts file uploads, which anybody can use. This means that to visualize IFC data you don't need to have IfcOpenShell, or other viewers, installed locally; you can just load your IFC file into this system to see the result.
Constraints